home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TPUG - Toronto PET Users Group
/
TPUG Users Group CD
/
TPUG Users Group CD.iso
/
AMIGA
/
AMICUS
/
AMICUS26.ADF
/
SoundScape
/
AztecLib
/
aztec.asm
< prev
next >
Wrap
Assembly Source File
|
1989-01-26
|
452b
|
25 lines
* Aztec.asm (c) 1987 Todor Fay
*
* Call _enteraztec at the beginning of a piece of code
* that is called from SoundScape.
* Call _leaveaztec when leaving that routine.
*
public __Dorg
public _enteraztec
public _leaveaztec
_enteraztec
move.l (sp)+,d0
movem.l d3/d4/d5/d6/d7/a3/a4/a5/a6,-(sp)
move.l #__Dorg,a4
add.l #32766,a4
move.l d0,-(sp)
rts
_leaveaztec
move.l (sp)+,d0
movem.l (sp)+,d3/d4/d5/d6/d7/a3/a4/a5/a6
move.l d0,-(sp)
rts